home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 February / EnterCD 02_2004.iso / Gry / Arcade! Classic Arcade Pack 2.0 / Arcade.EXE / $PROGRAMFILES / Arcade! Classic Arcade Pack / pacman.swf / scripts / DefineButton2_107 / BUTTONCONDACTION on(press).as
Encoding:
Text File  |  2003-12-05  |  189 b   |  14 lines

  1. on(press){
  2.    page -= 10;
  3.    if(page < 0)
  4.    {
  5.       page = 0;
  6.    }
  7.    if(page < 10)
  8.    {
  9.       last_btn._visible = false;
  10.    }
  11.    next_btn._visible = true;
  12.    showScores();
  13. }
  14.